100
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
	exfileview1.VisualAppearance().Add(3,"c:\\exontrol\\images\\hot.ebn");
	exfileview1.Background(388/*exHSThumb*/,0x1000000);
	exfileview1.Background(389/*exHSThumbP*/,0x2000000);
	exfileview1.Background(391/*exHSThumbH*/,0x3000000);
	exfileview1.Background(260/*exVSThumb*/,0x1000000);
	exfileview1.Background(261/*exVSThumbP*/,0x2000000);
	exfileview1.Background(263/*exVSThumbH*/,0x3000000);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
99
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.VisualAppearance().Add(2,"c:\\exontrol\\images\\pushed.ebn");
	exfileview1.VisualAppearance().Add(3,"c:\\exontrol\\images\\hot.ebn");
	exfileview1.Background(388/*exHSThumb*/,0x1000000);
	exfileview1.Background(389/*exHSThumbP*/,0x2000000);
	exfileview1.Background(391/*exHSThumbH*/,0x3000000);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
98
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows

public void init()
{
	;

	super();

	exfileview1.Option(4/*exHideFileExtensionsForKnownFileTypes*/,COMVariant::createFromBoolean(true));
	exfileview1.Refresh();
}
97
How can I change the date format in the Modified column

public void init()
{
	;

	super();

	exfileview1.Option(2/*exModifiedDateFormat*/,"yyyyy ");
	exfileview1.Option(3/*exModifiedTimeFormat*/,"hh:mm");
	exfileview1.Refresh();
}
96
How can I change the date format in the Modified column

public void init()
{
	;

	super();

	exfileview1.Option(2/*exModifiedDateFormat*/,"ddd, MMM dd yy");
	exfileview1.Refresh();
}
95
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used

public void init()
{
	;

	super();

	exfileview1.ModifiedDaysAgo(356);
	exfileview1.Option(1/*exModifiedDaysAgo*/,"vor %i Tagen");
	exfileview1.Refresh();
}
94
How can I change the "today" caption that's shown in the Modified column

public void init()
{
	;

	super();

	exfileview1.ModifiedDaysAgo(356);
	exfileview1.Option(0/*exModifiedToday*/,"__ new today __");
	exfileview1.Refresh();
}
93
Is there any way to rename a column

public void init()
{
	;

	super();

	exfileview1.ColumnCaption("Name","__ new name __");
}
92
Is there any option to exclude folders that match a pattern

public void init()
{
	;

	super();

	exfileview1.ExcludeFolderFilter("W*");
}
91
Is there any option to include only folders that match a pattern

public void init()
{
	;

	super();

	exfileview1.IncludeFolderFilter("W*");
}
90
How can I include files when folders are expanded

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.IncludeFilesInFolder(true);
}
89
How do I get the file or folder from the cursor
// MouseMove event - Occurs when the user moves the mouse.
void onEvent_MouseMove(int   _Button,int   _Shift,int   _X,int   _Y)
{
	;
	print( exfileview1.FileFromPoint(-1,-1) );
}

public void init()
{
	;

	super();

	print( exfileview1.FileFromPoint(-1,-1) );
}
88
How can I expand programatically a folder

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.Expand("WINNT");
}
87
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.Description(2/*exFilterBarFilterTitle*/,"");
	exfileview1.Description(3/*exFilterBarPatternFilterTitle*/,"");
	exfileview1.Description(4/*exFilterBarTooltip*/,"");
	exfileview1.Description(5/*exFilterBarPatternTooltip*/,"");
	exfileview1.Description(6/*exFilterBarFilterForTooltip*/,"");
}
86
How can I change the "Filter For" caption in the column's drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.Description(1/*exFilterBarFilterForCaption*/,"new caption");
}
85
How do I change the "All" caption in the drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.Description(0/*exFilterBarAll*/,"new name for (All)");
}
84
How do I sort a column

public void init()
{
	;

	super();

	exfileview1.Sort("Name",false);
}
83
How do I change the font in the filter bar

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarFont().Name("Verdana");
}
82
How do I change the visual appearanceof the filter bar

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarBackColor(0x1000000);
}
81
How do I change the color in the filter bar

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarBackColor(WinApi::RGB2int(255,0,0));
}
80
How do I change the color in the filter bar

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarForeColor(WinApi::RGB2int(255,0,0));
}
79
How do I specify the height of the filter bar

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarHeight(32);
}
78
How do I remove or clear the filter
public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.ClearFilter();
}
77
How do I change the caption in the filter bar

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
	exfileview1.FilterBarCaption("new filter");
}
76
How do I filter a column

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe|*.com|*.bat");
	exfileview1.ApplyFilter();
}
75
How can I enlarge the height of the drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.FilterBarDropDownHeight("-256");
}
74
How do I remove or clear my own filters

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat");
	exfileview1.ClearColumnCustomFilters("Name");
}
73
How do I specify my own filters

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.AddColumnCustomFilter("Name","(Executable files)","*.exe|*.com|*.bat");
}
72
How can I enlarge the width of the drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.FilterBarDropDownWidth("Name",2);
}
71
How can I enlarge the width of the drop down filter window

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.FilterBarDropDownWidth("Name","-256");
}
70
How can I enable filtering the folders and files

public void init()
{
	;

	super();

	exfileview1.ColumnFilterButton("Name",true);
}
69
How do I display in the Modified column, the number of days since the file or folder was changed

public void init()
{
	;

	super();

	exfileview1.ModifiedDaysAgo(356);
}
68
How do I stop programatically the searching
public void init()
{
	;

	super();

	exfileview1.StopSearch();
}
67
How do I search or find files

public void init()
{
	;

	super();

	exfileview1.Search("A*.A*");
}
66
How can I expand or collapse a folder, when the user double clicks it

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.ExpandOnDblClk(true);
}
65
How can I change the default icon being displayed for parent folders

public void init()
{
	;

	super();

	exfileview1.LoadIcon(COM::createFromObject(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)")),1234);
	exfileview1.IncludeParentIconKey(1234);
}
64
How can I show only folders

public void init()
{
	;

	super();

	exfileview1.IncludeFiles(false);
}
63
How can I show or hide the expand/collapse buttons

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.HasLines(true);
	exfileview1.HasLinesAtRoot(true);
	exfileview1.HasButtons(false);
}
62
How can I show the lines at root

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.HasLines(true);
	exfileview1.HasLinesAtRoot(true);
}
61
How can I show the lines between child and parents

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
	exfileview1.HasLines(true);
}
60
Is there any option to add an expand or collapse (+/-) buttons left to each folder

public void init()
{
	;

	super();

	exfileview1.ExpandFolders(true);
}
59
How do I show or hide the first item that shows when I browse new folders

public void init()
{
	;

	super();

	exfileview1.IncludeParent(false);
}
58
How do I enable or disable renaming the folders and files
public void init()
{
	;

	super();

	exfileview1.AllowRename(true);
}
57
How do I change the width of the columns

public void init()
{
	;

	super();

	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
56
How do I change the width of the columns

public void init()
{
	;

	super();

	exfileview1.ColumnWidth("Name",256);
}
55
How do I show or hide a column

public void init()
{
	;

	super();

	exfileview1.ColumnVisible("Type",false);
}
54
How can I get the path of the browsed folder
public void init()
{
	;

	super();

	exfileview1.BrowseFolderPath("C:\\Temp");
}
53
The Change event is not fired. What can I do
public void init()
{
	;

	super();

	exfileview1.ChangeNotification(true);
}
52
How do I execute a command from the file's content menu (sample 1)

public void init()
{
	;

	super();

	exfileview1.BeginUpdate();
	exfileview1.ExploreFromHere("");
	exfileview1.ExecuteContextCommand("C:\\",true,"Properties");
	exfileview1.EndUpdate();
}
51
How do I change the width of the columns

public void init()
{
	;

	super();

	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
50
How can I refresh automatically the control so it reflect the changes in the browsed folder
public void init()
{
	;

	super();

	exfileview1.AutoUpdate(true);
}
49
May I disable the control's content menu, that's displayed when the user does right click
public void init()
{
	;

	super();

	exfileview1.AllowMenuContext(false);
}
48
How do I refresh the control
public void init()
{
	;

	super();

	exfileview1.Refresh();
}
47
How do I enable single or multiple selection

public void init()
{
	;

	super();

	exfileview1.SingleSel(false);
}
46
Can I display only all execpts the *.exe and *.com files using wild characters

public void init()
{
	;

	super();

	exfileview1.ExcludeFilter("*.exe *.com *.bat");
}
45
Can I display only *.exe and *.com files using wild characters

public void init()
{
	;

	super();

	exfileview1.IncludeFilter("*.exe *.com *.bat");
}
44
Can I change the folder being explored
public void init()
{
	;

	super();

	exfileview1.ExploreFromHere("c:\\Program Files");
}
43
Can I display only files

public void init()
{
	;

	super();

	exfileview1.IncludeFolders(false);
}
42
How can I change the default icon being displayed for specified folders

public void init()
{
	COM com_FileType;
	anytype var_FileType;
	;

	super();

	exfileview1.LoadIcon(COM::createFromObject(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)")),1234);
	var_FileType = COM::createFromObject(exfileview1.FileTypes()).Add("W*"); com_FileType = var_FileType;
		com_FileType.Folder(true);
		com_FileType.IconIndex(1234);
		com_FileType.Bold(true);
		com_FileType.Apply();
}
41
How can I change the default icon being displayed for specified files

public void init()
{
	COM com_FileType;
	anytype var_FileType;
	;

	super();

	exfileview1.LoadIcon(COM::createFromObject(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)")),1234);
	var_FileType = COM::createFromObject(exfileview1.FileTypes()).Add("*.bat *.com *.exe"); com_FileType = var_FileType;
		com_FileType.IconIndex(1234);
		com_FileType.Apply();
}
40
How can I change the default icon being displayed for files

public void init()
{
	COM com_FileType;
	anytype var_FileType;
	;

	super();

	exfileview1.LoadIcon(COM::createFromObject(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)")),1234);
	var_FileType = COM::createFromObject(exfileview1.FileTypes()).Add("*"); com_FileType = var_FileType;
		com_FileType.IconIndex(1234);
		com_FileType.Apply();
}
39
How can I change the default icon being displayed for folders

public void init()
{
	COM com_FileType;
	anytype var_FileType;
	;

	super();

	exfileview1.LoadIcon(COM::createFromObject(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\week.ico`)")),1234);
	var_FileType = COM::createFromObject(exfileview1.FileTypes()).Add("*"); com_FileType = var_FileType;
		com_FileType.Folder(true);
		com_FileType.IconIndex(1234);
		com_FileType.Apply();
}
38
Does your control support partial check feature, so a parent item gets checked when all its child items are checked

public void init()
{
	;

	super();

	exfileview1.HasCheckBox(1/*PartialCheckBox*/);
	exfileview1.ExpandFolders(true);
}
37
Can I add a checkbox to each file or folder

public void init()
{
	;

	super();

	exfileview1.HasCheckBox(-1/*CheckBox*/);
}
36
How do I put a picture on the center of the control

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(17/*MiddleCenter*/);
}
35
How do I resize/stretch a picture on the control's background

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(49/*Stretch*/);
}
34
How do I put a picture on the control's center right bottom side

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(34/*LowerRight*/);
}
33
How do I put a picture on the control's center left bottom side

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(32/*LowerLeft*/);
}
32
How do I put a picture on the control's center top side

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(1/*UpperCenter*/);
}
31
How do I put a picture on the control's right top corner

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(2/*UpperRight*/);
}
30
How do I put a picture on the control's left top corner

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
	exfileview1.PictureDisplay(0/*UpperLeft*/);
}
29
How do I put a picture on the control's background

public void init()
{
	;

	super();

	exfileview1.Picture(exfileview1.ExecuteTemplate("loadpicture(`c:\\exontrol\\images\\zipdisk.gif`)"));
}
28
How do I change the control's border, using your EBN files

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\hot.ebn");
	exfileview1.Appearance(16777216);
	exfileview1.BackColor(WinApi::RGB2int(255,255,255));
}
27
How do I remove the control's border

public void init()
{
	;

	super();

	exfileview1.Appearance(0/*None2*/);
}
26
How can I change the foreground color of the control's header

public void init()
{
	;

	super();

	exfileview1.ForeColorHeader(WinApi::RGB2int(255,0,0));
}
25
How can I change the background color of the control's header

public void init()
{
	;

	super();

	exfileview1.BackColorHeader(WinApi::RGB2int(255,255,0));
	exfileview1.HeaderAppearance(1/*Flat*/);
}
24
How can I change the visual appearance of the header, using EBN files

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.BackColorHeader(0x1000000);
}
23
How can I change the header's appearance

public void init()
{
	;

	super();

	exfileview1.HeaderAppearance(1/*Flat*/);
}
22
How do I disable the control
public void init()
{
	;

	super();

	exfileview1.Enabled(false);
}
21
How do I change the visual appearance effect for the selected item, using EBN

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.SelBackColor(0x1000000);
	exfileview1.SelForeColor(WinApi::RGB2int(0,0,0));
}
20
How do I change the colors for the selected item

public void init()
{
	;

	super();

	exfileview1.SelBackColor(WinApi::RGB2int(0,0,0));
}
19
How can I change the control's font

public void init()
{
	;

	super();

	exfileview1.Font().Name("Tahoma");
}
18
How do I show or hide the control's header bar

public void init()
{
	;

	super();

	exfileview1.HeaderVisible(false);
}
17
How do I change the control's foreground color

public void init()
{
	;

	super();

	exfileview1.ForeColor(WinApi::RGB2int(120,120,120));
}
16
How do I change the control's background color

public void init()
{
	;

	super();

	exfileview1.BackColor(WinApi::RGB2int(200,200,200));
}
15
How do I prevent painting the control while multiple changes occur
public void init()
{
	;

	super();

	exfileview1.BeginUpdate();
	exfileview1.ForeColor(WinApi::RGB2int(255,0,0));
	exfileview1.BackColor(WinApi::RGB2int(255,255,255));
	exfileview1.EndUpdate();
}
14
How do I change the height of the items

public void init()
{
	;

	super();

	exfileview1.DefaultItemHeight(13);
	exfileview1.Refresh();
}
13
How do I enable resizing the columns at runtime

public void init()
{
	;

	super();

	exfileview1.ColumnsAllowSizing(true);
}
12
How do I call your x-script language

public void init()
{
	;

	super();

	exfileview1.ExecuteTemplate("BackColor = RGB(255,0,0)");
}
11
How do I call your x-script language

public void init()
{
	;

	super();

	exfileview1.Template("BackColor = RGB(255,0,0)");
}
10
Can I change the order of the buttons in the scroll bar

public void init()
{
	;

	super();

	exfileview1.ScrollOrderParts(1/*exHScroll*/,"t,l,r");
	exfileview1.ScrollOrderParts(0/*exVScroll*/,"t,l,r");
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
9
The thumb size seems to be very small. Can I make it bigger

public void init()
{
	;

	super();

	exfileview1.ScrollThumbSize(1/*exHScroll*/,64);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
8
How do I enlarge or change the size of the control's scrollbars

public void init()
{
	;

	super();

	exfileview1.ScrollHeight(18);
	exfileview1.ScrollWidth(18);
	exfileview1.ScrollButtonWidth(18);
	exfileview1.ScrollButtonHeight(18);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
7
How do I assign a tooltip to a scrollbar

public void init()
{
	COM com_StdFont;
	anytype var_StdFont;
	;

	super();

	exfileview1.ScrollToolTip(1/*exHScroll*/,"This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar");
	exfileview1.ScrollPartCaption(1/*exHScroll*/,256/*exThumbPart*/,"This is just a text");
	var_StdFont = COM::createFromObject(exfileview1.ScrollFont(0/*exVScroll*/)); com_StdFont = var_StdFont;
	com_StdFont.Size(12);
	exfileview1.ScrollWidth(20);
	exfileview1.ScrollThumbSize(0/*exVScroll*/,148);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
6
I need to add a button in the scroll bar. Is this possible

public void init()
{
	;

	super();

	exfileview1.ScrollPartVisible(1/*exHScroll*/,32768/*exLeftB1Part*/,true);
	exfileview1.ScrollPartCaption(1/*exHScroll*/,32768/*exLeftB1Part*/,"1");
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
5
Can I display an additional buttons in the scroll bar

public void init()
{
	;

	super();

	exfileview1.ScrollPartVisible(1/*exHScroll*/,32768/*exLeftB1Part*/,true);
	exfileview1.ScrollPartVisible(1/*exHScroll*/,16384/*exLeftB2Part*/,true);
	exfileview1.ScrollPartVisible(1/*exHScroll*/,1/*exRightB6Part*/,true);
	exfileview1.ScrollPartVisible(1/*exHScroll*/,2/*exRightB5Part*/,true);
	exfileview1.ColumnAutoResize(false);
	exfileview1.ColumnWidth("Name",256);
}
4
Is there any option to highligth the column from the cursor - point
public void init()
{
	;

	super();

	exfileview1.Background(32/*exCursorHoverColumn*/,WinApi::RGB2int(255,255,255));
}
3
Is there any option to highligth the column from the cursor - point
public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.Background(32/*exCursorHoverColumn*/,0x1000000);
}
2
How do I change the visual aspect of the close button in the filter bar, using EBN

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.Background(1/*exFooterFilterBarButton*/,0x1000000);
	exfileview1.ColumnFilterButton("Name",true);
	exfileview1.ColumnFilterType("Name",1/*exPattern*/);
	exfileview1.ColumnFilter("Name","*.exe");
	exfileview1.ApplyFilter();
}
1
How do I change the visual aspect of the drop down filter button, using EBN

public void init()
{
	;

	super();

	exfileview1.VisualAppearance().Add(1,"c:\\exontrol\\images\\normal.ebn");
	exfileview1.Background(0/*exHeaderFilterBarButton*/,0x1000000);
	exfileview1.ColumnFilterButton("Name",true);
}